#python is installed
Explore tagged Tumblr posts
autumncalls 5 months ago
Text
having trouble installing a python library and the two lecturers (both it specialists) determined that my notebook needs an exorcism. the issue seems to be some sort of problem with windows so the fix was installing a linux subsystem. love when my computer problems stump professionals. the issue is still ongoing, we just circumvented it
3 notes View notes
froget-me-nots 28 days ago
Text
Tumblr media Tumblr media
deskpet mikey :)
Tumblr media
60 notes View notes
fancykraken 2 months ago
Text
Tumblr users: you need to back up your tumblr sooner rather than later
Me, a tumblr user since 2010:
Tumblr media Tumblr media
20 notes View notes
lethalwizard 2 months ago
Text
oh my fucking god i鈥檓 the smartest cunt alive
Tumblr media
10 notes View notes
frog707 8 months ago
Text
Wilma again
I have ongoing issues with the Linux Mint installation on the laptop I use for software development and blogging.
You may recall I tried upgrading to version 22 (code name: Wilma), encountered a graphics regression, and had to revert the upgrade using TimeShift. Since then, my Linux experience hasn't been quite right. While troubleshooting an issue, I uninstalled Python; this broke APT, causing routine software updates to fail.
Yesterday I created a new partition on the HDD and attempted a clean install of Wilma there. After several tries, I suspect that my largest USB thumb drive (NXT brand, purchased in January 2024) suffers from data corruption.
Believe it or not, my 2nd-largest thumb drive is too small to hold the 2.9 GByte ISO image, so this morning I'm off to buy a new thumb drive.
7 notes View notes
dkettchen 1 year ago
Text
Tumblr media
16 notes View notes
cosmogyros 4 months ago
Text
.
2 notes View notes
amethystsnow 1 year ago
Text
why the hell is python basically "the beginner language" its so fucking annoying i wanted to try to do something relatively simple (click when the pixel under my cursor changes color) but i had to spend like 45 minutes getting it to be able to control my mouse and do things such as click because i found the module i need for it and tried to install that only for pip to just not work because apparently you need to either be in regular command prompt and type "py -m" before it or you need this longass command in order to do it through the python console and it took way too long to find someone who mentioned that information necessary to install modules but then it wasnt working in pycharm because apparently the installations are specific to the venv rather than just python and so i had to figure out hwo to open up the console in pycharm and use the longass command to install it there BUT THEN that dindt work because the venv didnt allow installing other software or whatever so i had to go to the cfg file for it and FINALLY was able to install it and use it in pycharm. and then i learned that i have to install another module in order to use the sleep command. sleep. why does this beginner language not have a sleep command by default thats such a basic common mechanic why to i need to install and import time anyway if you actually read through all of my rambling and complaining thank you for that and FUCK python. i am however going to continue using it for this little project (building off of the original purpose) because once the modules are installed it is a very simple language
3 notes View notes
watermelinoe 11 months ago
Text
this is a longshot but does anyone here know how to set up python with external modules like google api python client
2 notes View notes
recurring-polynya 2 years ago
Text
i just want a lil script that can scrape a spotify playlist and stick all the lyrics into a database that i can do keyword searches on when i need to come up with a title for my fanfic
7 notes View notes
sevicia 1 year ago
Text
I wanted to make a cleaner summary of last week's classes and also review the classes I have this week since the material is already uploaded beforehand but I was feeling so horrible throughout the day that when I sat down I was just gonna look at the ones for tomorrow but I think I'm just gonna go to bed because I just gave my little numbers game a few tries and not even the joy of tribial elementary school-level math games is bringing my brain cells and/or full sentience back
#diary#accessing it through the CMD thing and not just running it from the IDE made me realize a few things about it though so I'll hav#I'll have to maybe jot them down somewhere when I'd normally just be rly excited and try to fix them straight away like I am truly fucked r#I do wanna make an eng version of it sometime soon so I can share it even tho it's literally the simplest little thing. it's fun if you're#an easily amused nerd that loves playing with numbers in a truly useless manner. if that makes sense#also very obviously text-only I am NOT torturing myself with any graphics of ANY kind rn#it closes immediatly as they do and also when it comes to having double/triple digit starting numbers it becomes a lot less fun I think tho#though I haven't used it much with those yet#I still wanna figure out a way of making it better when it comes to 2/3 digit starters. and my original idea included maybe keeping track#keeping track of how many steps you took even between different rounds but I made the simplest version for now. I also think making like a#''this was the least amount of steps possible!'' type thing would be very very cool but that is FAR too big brained for me rn#cause I can figure out how to do the record keeping thing but that last one is like. let's stop talking for a little while.................#oh but adding an actual interface sounds so fun even though I have very little clue on how to do that rn I could probably STOP typing becau#because I can feel my stupid ass self start getting excited about this which will make it so I start working on it instead of going to bed#NO. DOWN !!!!!!!!!!!!!! auhgh............ oh man I had a lame joke to make but I completely forgot what it was#I have coding class tomorrow in which I normally just do the exercises as fast as possible before playing around but the only Python editor#I could find installed on the school computers was Visual Studio Code and I have no clue how to use that shit like I don't need so many#so many buttons. probz. OKAY GOODNIGHT
3 notes View notes
recreationaldivorce 2 years ago
Text
man i love the jetbrains ides but they take up soooo much memory i wish they would just rewrite their ides in a native language...
3 notes View notes
thasorns-moved 2 years ago
Text
my conclusion for the day: I suck at programming.
Tumblr media
2 notes View notes
consistantly-changing 2 months ago
Text
Some things I will add regarding the Tumblr Utils method:
If you have other python software installed, you might need to remove them lest your computer have an issue with which version of Python to run the script on, I had to remove a C++ emulator which was clashing with the python for some reason, though admittedly that program never actually worked for me.
Use the command window rather than trying to download and run the code yourself, the link in the document points to a version of the code that was incompatible with the current Python version I was using and I wasted close to two hours trying to force it to run before giving up.
The API key request appears to be automatic, so you don't have to wait for one of the few remaining staff members to personally authorize you.
This is the current line of code that works to backup your account:
tumblr-backup --save-audio --save-video --tag-index --incremental blog-name
Replace "blog-name" with your blog name.
save-audio and save-video are self explanatory, however I did encounter some issues with posts where videos couldn't be saved. The program will give you a post number pointing to which post couldn't be saved, so if you wish you can go and save those videos/audios through a different method. tag-index creates an index of every tag you've ever used, which is helpful but also note that it means every tag. incremental is perhaps the most useful one, as it allows you to keep updating the backup. The document uses --i, which according to the script I ran is no longer used.
Good wifi is absolutely recommended as this thing ate up most of my bandwidth and took nearly 3 days for about 91000 posts. Another important command, especially if you have wifi troubles, is
tumblr-backup --save-audio --save-video --tag-index --continue blog-name
If ever your command is interrupted, this allows the program to continue from where the last increment stopped. I made a notepad file containing these two lines and just copied + pasted them any time the program crashed.
You can use your computer while this runs, I set mine up with a power connection and disabled the auto shutdown feature. I do recommend doing this, it's not difficult as long as you don't have the world's most unique computer problems like I did.
Btw much as I love to make fun of twitter and reddit's business decisions, I have 0% trust in tumblr's management to not go a similar route so this is your gentle reminder that you should regularly go to your blog settings to export your blog. That's a fancy way of saying you can download a backup of your blog so if everything goes down you'll still have a backup of your posts & convos.
120K notes View notes
gabidemo 2 months ago
Text
How to Install Python on Windows 11 (EASY)
youtube
0 notes
robjorg 2 months ago
Video
youtube
Install Python on Windows 11
0 notes